Mysql数据库中图片字段Blob类型和String类型相互转换
1、Blob-->String 2、String-->Blob ...
1、Blob-->String 2、String-->Blob ...
字符串转为Blob对象: Hibernate.createBlob(str.getBytes()); Blob对象转为字符串: String str= new String(blob.ge ...